BearZPY Blog

Hi, nice to meet you

BearZPY's avatar BearZPY

ADB 常用指令

ADB 常用指令

  1. 显示连接到计算机的设备

    adb devices

  2. 多设备连接时指定操作设备

    adb -s "设备SN" "Cmd"

  3. 安装 APK

    adb install -r test.apk

  4. 卸载 APK

    adb uninstall com.example.android.background

  5. PC 传文件到 Android

    adb push ./thing.zip /storage/sdcard0/

  6. PC 获取 Android 文件

    adb pull /storage/sdcard0/thing.zip ./

  7. 启动指定 App 的指定 Activity

    adb shell am start -n com.android.settings/com.android.settings.Settings

  8. 关闭指定 App

    adb shell am force-stop com.android.settings

  9. 清除指定 App 数据

    adb shell pm clear com.example.android.background

  10. 查看第三方应用

    adb shell pm list packages -3

  11. 手机电量

    adb shell dumpsys battery set level 100

  12. 模拟手机从 USB 充电器上拔掉 Android 6.0 以上

    adb shell dumpsys battery unplug

  13. 重新插入手机 Android 6.0 以上

    adb shell dumpsys battery reset

  14. 切换系统为非充电状态

    adb shell dumpsys battery set status 1